############################################################## 
## MOD Title: Smilies Cols and Rows Addon for Extended Quick Reply Form v. 3.x.x 
## MOD Author: Xpert < xpert@phpbbguru.net > (N/A) http://www.phpbbguru.net/
## MOD Description: some_description_goes_here 
## MOD Version: 1.0.0 
## 
## Installation Level: Easy 
## Installation Time: 1 Minute 
## Files To Edit: file_1, file_2, file_3, etc 
## Included Files: (n/a, or list of included/required files) 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
## Author Notes: 
## 
############################################################## 
## MOD History: 
## 
##   2006-06-16 - Version 1.0.0 
##      - Initial release 
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

#
#-----[ OPEN ]------------------------------------------
#
quick_reply.php

#
#-----[ FIND ]------------------------------------------
#
generate_smilies('inline', PAGE_POSTING);
	
#
#-----[ IN-LINE FIND ]------------------------------------------
#
'inline'

#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
'quick_reply'

#
#-----[ OPEN ]------------------------------------------
#
includes/functions_post.php

#
#-----[ FIND ]------------------------------------------
#
function generate_smilies

#
#-----[ FIND ]------------------------------------------
#
	if ($mode == 'window')
	
#
#-----[ BEFORE, ADD ]------------------------------------------
#
if ( $mode == 'quick_reply' )
{
	$inline_columns = 4;
	$inline_rows = 5;
	
	$mode = 'inline';
}

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM